home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2008 February / PCWFEB08.iso / Software / Resources / Developers / XAMPP 1.5.4 / Windows installer / xampp-win32-1.5.4-installer.exe / xampp / mysql / mysql_uninstallservice.bat < prev    next >
Encoding:
DOS Batch File  |  2005-09-26  |  394 b   |  21 lines

  1. @echo off
  2.  
  3. if "%OS%" == "Windows_NT" goto WinNT
  4.  
  5. :Win9X
  6. echo Don't be stupid! Win9x don't know Services
  7. echo Please use mysql_stop.bat instead
  8. goto exit
  9.  
  10. :WinNT
  11. echo now stopping MySQL when it runs
  12. net stop mysql
  13. echo Uninstalling MySql-Service
  14. bin\mysqld-nt --remove mysql
  15. if not exist %windir%\my.ini GOTO exit
  16. echo Remove %windir%\my.ini
  17. del %windir%\my.ini
  18.  
  19. :exit
  20. pause
  21.